home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 1.st / POGOSRC.ARC / STMEMORY.C < prev    next >
Encoding:
C/C++ Source or Header  |  1985-11-20  |  176 b   |  19 lines

  1.  
  2. #define NULL 0L
  3.  
  4. extern void *malloc();
  5.  
  6. void *
  7. askmem(amount)
  8. int amount;
  9. {
  10. return(malloc(amount));
  11. }
  12.  
  13. freemem(pt)
  14. void *pt;
  15. {
  16. if (pt != NULL)
  17.     free(pt);
  18. }
  19.